Viewing 15 posts - 1 through 15 (of 287 total)
Ed Wagner (10/29/2013)
October 29, 2013 at 11:01 am
chetanr.jain (10/29/2013)
@Keith : Thanks for reply & linkSo, If i clear 70-450 then i have to appear one exam (70-459) for upgrading to to SQL 2012 MCSE.
Unless I'm misunderstanding...
October 29, 2013 at 9:47 am
DDL = Data Definition Language
It is essentially the metadata that describes the make-up of the table... columns, data types etc...
What kind of relationship are you trying to create and again...
October 22, 2013 at 7:14 am
Glad we could help.
October 17, 2013 at 6:49 am
aeri_q (10/17/2013)
The query i have mentioned, if run directly in TSQL ..it returns...
October 17, 2013 at 6:27 am
aeri_q (10/17/2013)
CREATE PROCEDURE DBO.FKEYS_FOR_KEYTBL
@FKNAME VARCHAR(100) = NULL,
@SCHNAME VARCHAR(5) = NULL,
@FKFLDNAME VARCHAR(20)...
October 17, 2013 at 6:11 am
aeri_q (10/17/2013)
Below is the query :
SELECT obj.name AS FK_NAME,
sch.name AS [schema_name],
tab1.name AS
,
...
October 17, 2013 at 5:35 am
aeri_q (10/17/2013)
i want to convert it in a stored procedure so the values of each column get stored in a...
October 17, 2013 at 3:18 am
See link below as to how best to post performance problems:
http://www.sqlservercentral.com/articles/SQLServerCentral/66909/
October 16, 2013 at 7:17 am
Don't know anything about sp_GenerateInserts but are you just trying to script the data in a table as Insert Statements?
October 8, 2013 at 9:26 am
As an FYI, the use of OFFSET in the ORDER BY Clause would be valid for SQL Server 2012.
October 3, 2013 at 7:39 am
If you haven't done this kind of thing before you might want to take a backup of the destination database before you do your import... just in case.
September 30, 2013 at 7:59 am
Ah, I see. I saw naming with @Param1 and assumed Parameters.
September 26, 2013 at 7:50 am
I would imagine renaming variables might be dependent on if they have been referenced by name in a front end somewhere.
Either way, that's certainly interesting code.
How is @Param1 then tracked...
September 26, 2013 at 7:44 am
I think comments should state what you are doing and not how you are doing it or as I've seen it written sometimes, comments should specify your intent.
It is fair...
September 26, 2013 at 3:12 am
Viewing 15 posts - 1 through 15 (of 287 total)