Viewing 15 posts - 196 through 210 (of 212 total)
You can use this statement as a base to accomplish what you want. (You still have to create your insert statement from this Common Table Expression)
;WITH myCTE(pid, yrs, lvl)
AS (
SELECT...
February 24, 2009 at 2:26 am
A quick comment, the datatype is missing for the amount column.
And yes, there is an alternative to cursor, i will try to post the solution later on (busy right now).
February 24, 2009 at 1:59 am
There are a couple of strategies you can use, mirroring / logshipping / replication. My recommendation will vary depending on what you want to accomplish, if you would like to...
February 24, 2009 at 1:50 am
Bruce W Cassidy (2/19/2009)
February 20, 2009 at 5:08 am
GilaMonster (2/19/2009)
swmsan (2/18/2009)
I do backup restore 10 times a day...still I was not able to answer such questions...
Errr, those are pretty trivial questions. If you don't know the answers, how...
February 19, 2009 at 6:23 am
swmsan (2/17/2009)
I recently got into DBA and I wanna stick to it as am very much interested in this.
The problem is that my...
February 18, 2009 at 12:19 am
Do you have a maintenance plan that check and backup the databases, rebuild indexes etc?
Do you have any blocking transactions ( use sp_who2 to look for blocking SPID in the...
February 18, 2009 at 12:13 am
The error message that we get is :
- Cannot create a column accessor for OLE DB provider "OpenLinkODBC"
Finally I found a solution that solved the problem. It seems like the...
February 17, 2009 at 6:15 am
Do you get this message in SQL Server log?
Configuration option 'Agent XPs' changed from 1 to 0. Run the RECONFIGURE statement to install.
Try to run the statement RECONFIGURE and then...
February 17, 2009 at 3:15 am
Information about Msg 7399, Level 16, State 1, Line 1 from Microsoft knowledge base ( http://support.microsoft.com/kb/314530 ) :
"Error 7399 is a generic error message that the provider returns, which indicates...
February 13, 2009 at 3:28 am
Do anyone have experience of using the versioning capability of stored procedures? Whats your conclusion of this feature?
/Senior SQL Server DBA
January 30, 2009 at 2:57 am
SQL Server 2005 introduced partial support for the OVER clause and many important elements of the OVER clause are still missing, please read the following document from Itzik Ben-Gan:
January 14, 2009 at 1:06 am
Viewing 15 posts - 196 through 210 (of 212 total)