|
|
Browse by Tags
All Tags » sql server » table (RSS)
Showing page 1 of 3 (23 total posts)
-
It may not be a hardcore requirement on day-to-day basis to drop all tables, views and stored procedures from a SQL Server database within your environment, but it will be handy to have such a code at your end when such task is required.
There are 2 ways to accomplish this, first using undocumented stored procedure such as ...
-
Cross post from my BlogCasts site.
-
You can use one of the following to know the structure of a table
1 Generate SQL Script option from Enterprise Manager/Management Studio
2 select * from information_schema.columns where table_name='table_name'
3 EXEC sp_help 'table_name'
4 EXEC sp_columns 'table_name'
5 In Query Analyser type the name of the table, highlight it and press ...
-
One of the [SSP] forum user asked about what is OLAP, how the process flow occurrs when update happens to a fact table!
It sounds like the basic question for Analysis Services user, OLAP - On-Line Analytical Processing for BI - Business Intelligence is useful for a fast and interactive access to aggregated data and the ability to drill ...
-
As a programmer interacting with SQL Server's cache is not often needed, but when you do need to determine what is going on with the cache, or you simply need to flush the execution plans or data pages to tune a query, you now have the means to do so.
Below is the TSQL I have used to obtain buffers that are used within memory by object (SQL ...
-
The following pages were recently modified.
Source: Knowledge BaseProduct: Microsoft SQL Server 2005 Enterprise Edition, SQL Server 2005 Standard Edition & SQL Server 2005 Enterprise X64 EditionNotification Contents: New and Major Modifications
You may receive an error message when you try to export a table by using the SQL Server Import ...
-
The following pages were recently modified.
Source: Knowledge BaseProduct: Microsoft SQL Server 2005 Standard Edition & SQL Server 2005 Enterprise X64 EditionNotification Contents: New and All Modifications
FIX: An empty string is replicated as a NULL value when you synchronize a table to a SQL Server 2005 Compact Edition ...
-
By default SQL Server automatically creates the internal tables for Full-text search, XML indexes and Service broker. These are also created when a user query is written poorly that uses tempdb heavily.
At they are called internal tables but do not contain any user related data and schema for these tabls are always fixed. You will not be ...
-
I would like to call this as how efficiently you can obtain counting rows in SSIS package. Usual thought would come is @@rowcount or COUNT_BIG functions, but this is not that efficient way to obtain the results.
SSIS provides the snippet within its components such as using Row Count component, for this you have to create a ...
-
When it comes to resolving table fragmentation, the basic checkout you perform is to run DBCC INDEXDEFRAG or even run DBCC DBREINDEX statements.
As per the default configuraiton SQL Database Engine allocates a new extent to an allocation unit only when it cannot quickly find a page in an existing extent with sufficient space to hold the row being ...
1
|
|
|