Viewing 15 posts - 1,741 through 1,755 (of 2,010 total)
Per BOL
Parameters of all SQL Trace stored procedures (sp_trace_xx) are strictly typed. If these parameters are not called with the correct input parameter data types, as specified in the argument...
November 16, 2006 at 12:03 pm
Working from the inner most () out it does...
substring(pos, pos) picks a character from a string
ascII() get's the ASCII code for the character it chose from the string...
the IF() compares...
November 16, 2006 at 11:43 am
here's a link to an article that discusses it's use and how to create one etc..
November 16, 2006 at 9:13 am
Basically it's a table that you can add to your database to help with calculating dates.
You can add whatever information you might need. You can pretty easily genereate one and...
November 16, 2006 at 9:09 am
Can you give a bit more detail on what is supposed to happen when you execute Project.exe? Are you expecting a return back, or is this just taking an action...
November 16, 2006 at 8:49 am
have a look at sp_grantdbaccess in Book online. I think it will be helpful.
November 16, 2006 at 8:19 am
Hacking the System stored procedure may put you into an unsupportable instance of SQL server. so you may want to rethink that...
You could create a stored procedure that gather the...
November 16, 2006 at 8:09 am
You might try using a calendar table to track workdays or you could just use
datediff(dw,date,date) The dw datepart is weekdays. This won't account for holidays however, hence the suggestion...
November 16, 2006 at 7:24 am
I did, it's at the end of my first post, but here it is again...
localdll Method
PUBLIC Function MyMethod(Errtext, Param1, Param2, myRS, User)
Dim StrSQL AS String
StrSQL = "SELECT value, ID FROM...
November 16, 2006 at 7:09 am
It's not the word doc that I'm having issues with. I think it's the other dll I'm having issues with. the line of code that errors and returns my error...
November 16, 2006 at 6:56 am
The file is written properly, it's saved renamed and reopened correctly. The problem comes after it's already been reopened and I'm calling my other Dll's to pull in data to...
November 16, 2006 at 6:29 am
Yeah, I've been through all of the files involved, it's word automation that I'm doing, but the manipulation of the word documents are fine. It's actually one of the calls...
November 16, 2006 at 6:18 am
yes the odbc datasource would be a DSN either on your server or on the client machines depending on how you are setting up your application.
u could have a look...
November 15, 2006 at 11:03 am
"the easiest & [most] effective way" means a lot of different things to a lot of different DBA's in different environments...
Questions to ask yourself...
What am I backing up,
How Often,
what is...
November 15, 2006 at 9:42 am
Viewing 15 posts - 1,741 through 1,755 (of 2,010 total)