Viewing 15 posts - 1,456 through 1,470 (of 2,008 total)
A userA has excecute permission on a stored proc procA that runs on server1. In the procA there is a use of the linked server that talks to the server2...
November 19, 2011 at 4:02 am
Create SSIS package.
OR
INSERT ... SELECT * FROM OPENROWSET(BULK...) statement
November 19, 2011 at 3:52 am
1.) (Wide solution) Structure a table with 1024+2 columns.
Pros: the sample reading is held together in the database.
It’s possible with Wide Tables.
A wide table is a table...
November 19, 2011 at 3:33 am
Jeff Moden (11/18/2011)
Dev (11/16/2011)
It's not possible.Ladies and Gentlemen, please place your bets. 😉
Yes, please :-D. The good point here is "the DDL is missing". So you may take...
November 19, 2011 at 3:06 am
Jeff Moden (11/18/2011)
Walton (11/18/2011)
It was an interview question. And no other information was provided.
I'm not going to give you the answer but I will tell you where to look for...
November 19, 2011 at 3:00 am
I am unable to login with the client credentials.
Where are you not able to login to, SQL Server / Application? If SQL Server what’s the error you are getting?
For...
November 19, 2011 at 2:50 am
waxingsatirical (11/18/2011)
I think filtered indexes must be my favourite feature of SQL server, am trying to a use a covering filtered index to speed up my querying when I...
November 18, 2011 at 3:51 am
When you load 2nd page use different Connection String.
November 18, 2011 at 2:59 am
@declare @myString varchar(max)
@myString = 'SELECT ...'
exec @myString
The above piece of code is Dynamic Query (not very efficient). With this, you are also at a risk of SQL injection.
November 18, 2011 at 2:50 am
SQL Server tries to optimize the execution of your stored procedures by creating compiled execution plans. An execution plan for a stored procedure is created the first time a...
November 18, 2011 at 2:43 am
GilaMonster (11/18/2011)
Dev (11/18/2011)
Better (& Expensive) Solution would be Failover Clusters.Why do you say clustering is better and more expensive than mirroring?
Better:
Configuring 1 Failover Cluster Vs Managing 30 Mirror...
November 18, 2011 at 2:33 am
I am not sure if it's applicable. Please verify at your end.
BUG: Error message when you try to install SQL Server 2005 Service Pack 1: "Unable to install Windows Installer...
November 18, 2011 at 2:25 am
the read to write ratio is normally biased towards reads.
Actually "It depends"
Also, some tables are likely to have high volumes of inserts/updates which could be possible candidates for a lower...
November 18, 2011 at 2:09 am
Stewart "Arturius" Campbell (11/18/2011)
To find column names, try
SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'MyTable'
OR
EXEC sp_help 'MyTable' -- It will return more than what you want.
November 18, 2011 at 1:57 am
gcresse (11/17/2011)
'ALTER TABLE #tmpVintage ADD [VntRun' + CAST(triInputLotKey AS VARCHAR) + '] DECIMAL(18,5) SPARSE NULL, [VntPct' + CAST(triInputLotKey AS VARCHAR)...
November 18, 2011 at 1:11 am
Viewing 15 posts - 1,456 through 1,470 (of 2,008 total)