Viewing 15 posts - 13,591 through 13,605 (of 18,923 total)
Do you have the primary key(s) of the table you want to update in the view??
September 2, 2005 at 8:27 am
I know that the inserts generator is made by vyaskn, but I don't know if he's the author of the primary link. Sorry to burst your bubble.
September 2, 2005 at 8:21 am
I was just kidding... I kind of figured out the definition by the name. Still, thanx for the info
.
September 2, 2005 at 8:19 am
Not really about perf tuning but a good start for you :
http://www.sqlservercentral.com/columnists/bknight/dbaroles.asp
http://www.sqlservercentral.com/columnists/sjones/whatsadbaanoverview.asp
http://www.sqlservercentral.com/columnists/sjones/thevalueofadba.asp
http://www.sqlservercentral.com/columnists/jyao/howtobeagooddbastrategyandtactics.asp
Also you...
September 2, 2005 at 8:16 am
"As mentioned by rqR'us ??????????!!!!!!!(R*m*)"
September 2, 2005 at 8:13 am
What page??
The link (Help us help you) I provide is not from me!!!
September 2, 2005 at 8:04 am
You don't get what I said .
DON'T FÛQUYNG DO THAT!!!!!!!!!
Unless you want your server a prime suspect for hacking.
September 2, 2005 at 8:03 am
You don't :
CREATE PROCEDURE dbo.Test @StatusID AS INT = 0
AS
SET NOCOUNT ON
Select List, The, ColNames, Here from dbo.tblStatus where fldStats = @StatusID
SET NOCOUNT OFF
September 2, 2005 at 7:48 am
This will take a few modifications but the basic is there :
for the server objects
IF Object_id('ListTableColumns_NotNulls') > 0
DROP FUNCTION dbo.ListTableColumns_NotNulls
GO
IF Object_id('TablesColumnsNulls') > 0
DROP TABLE dbo.TablesColumnsNulls
GO
IF Object_id('TablesColumnsNulls_Insert') > 0
DROP PROCEDURE...
September 2, 2005 at 7:41 am
Check this out (from the Books online) :
SET DATEFORMAT mdy
GO
DECLARE @datevar datetime
SET @datevar = '12/31/98'
SELECT @datevar
GO
SET DATEFORMAT ydm
GO
DECLARE @datevar datetime
SET @datevar = '98/31/12'
SELECT @datevar
GO
SET DATEFORMAT ymd
GO
DECLARE @datevar datetime
SET @datevar =...
September 2, 2005 at 7:28 am
I said it would be better to present it horizontally as we always do, and that to make it happen vertically you'd have to use dynamic sql... please also note...
September 2, 2005 at 7:21 am
Viewing 15 posts - 13,591 through 13,605 (of 18,923 total)