Viewing 15 posts - 5,596 through 5,610 (of 7,191 total)
Steve Bergkamp (12/13/2010)
Any ideas if my Tally doesn't include all the same ID's in my ID table ?
Just make sure it does. You could put some logic at the...
December 13, 2010 at 6:38 am
To find out where the breaks are, you just LEFT JOIN your tally table to your table of IDs, and find the values in your tally table corresponding to NULLs...
December 13, 2010 at 6:06 am
Place it wherever is most apposite. I think I would use the master database. If it's not there then your procedure's going to fail, unless you define it...
December 13, 2010 at 5:38 am
OK, this is getting outside my area of knowledge. However, I'd say that if one part of your application is connecting to SQL Server, and another part is failing...
December 13, 2010 at 4:36 am
dilipd006 (12/13/2010)
this error is created from Front End. jst want to know whether this error is related to Sql server or .Net
Well, how are you going to know if you...
December 13, 2010 at 4:25 am
If you look in the SQL Server error log, assuming that it is configured to log failed logins, you will find information that will enable you to deduce the reason...
December 13, 2010 at 4:09 am
OK, so your Treepath column contains a delimited list that you need to split into its individual components? You need a function to do that for you. If...
December 13, 2010 at 4:08 am
I think I answered the first problem in the 18th message in this thread.
As for calculating the size of the result set, build a table of all the possible data...
December 13, 2010 at 3:51 am
Problem? I inferred from your previous post that it was resolved. Please let us know what the outstanding issues are.
John
December 13, 2010 at 2:24 am
I'm glad you've made some progress. Your SET @par2 and SET @filter statements will fail if the respective temp tables contain more than one row, however.
John
December 10, 2010 at 4:00 am
This is where dynamic SQL starts to get ugly and is one of the reasons why you should try to avoid it. I think you would have to loop...
December 10, 2010 at 3:03 am
There's a stored procedure sp_delete_backuphistory that you can use to purge old backup records from the msdb database.
John
December 10, 2010 at 2:46 am
Resender (12/10/2010)
returns me the delimited varchar as a table where each record is the next value
turns into
ID ColumnName
1 MachineId
2 RegisterId
3 UtcTime
4 Value
I...
December 10, 2010 at 2:20 am
Resender (12/9/2010)
I could off course put that in a variable and execute the variable.
Then the problem would be to then calculate...
December 10, 2010 at 1:31 am
Wrong way round. You can restore a SQL Server 2000 database to SQL Server 2005, but as far as I know, you can't restore a SQL Server 2005 database...
December 9, 2010 at 8:58 am
Viewing 15 posts - 5,596 through 5,610 (of 7,191 total)