Viewing 15 posts - 196 through 210 (of 270 total)
It simply tells you that a packet of information (32 bytes in size) was sent to the target computer, and the response time was less than 1 millisecond.
Each packet has...
March 23, 2006 at 4:27 pm
Not quite sure what you are after here, but to execute the ping command from QA, try something like this:
EXEC master..xp_cmdshell 'ping 192.168.1.1'
March 22, 2006 at 9:51 pm
Check out the system function DATABASEPROPERTY('<database name>','IsOffline') in BOL.
March 22, 2006 at 9:46 pm
You probably be better off using the ISNUMERIC() function.
March 20, 2006 at 5:59 pm
I have to say I agree with you on four of the seven points (#2 to #5); not sure about point #6, and haven't a clue about what it is...
March 19, 2006 at 10:04 pm
There is this Steve Jones' article you can use:
http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=82
March 15, 2006 at 11:39 pm
Has the SQL Server service account being granted READ permissions to the folder?
March 15, 2006 at 11:37 pm
The SQL Collation of a database is inherited from the Server setting when the database is created.
Option 1: You do not have to re-install SQL Server to change the SQL Collation,...
March 9, 2006 at 6:32 pm
The two common design model of a DW are the STAR and SNOW-FLAKE schemas. You will need to do a bit of research to find out the advantages/disadvantages of using each schema.
Once,...
March 8, 2006 at 4:49 pm
You mentioned that the GST component is rounded per item/record. In this instance, depending on the rounding that is used, you may not be able to reconcile the summary data.
The...
March 8, 2006 at 4:39 pm
Yes, but just make sure that all related tables referencing this field is also updated using the same update sql statement.
In addition, you should use alter table statements to change...
March 7, 2006 at 7:01 pm
A simple example that works? Why not try Books Online (BOL), which you should have access thru the help menu of QA.
Type 'bcp utility' and select 'copying data from data...
March 7, 2006 at 6:55 pm
Or, if you are a little confused by the plethora of single-quotes, the alternative of using a simple while loop is as follows:
if object_id('tempdb..#databases') is not null drop table #databases
select...
March 7, 2006 at 6:45 pm
You need to add the user as a member of the server role 'dbcreator'. In QA type the following to see the permissions for this particular role:
sp_srvrolepermission 'dbcreator'
March 7, 2006 at 6:26 pm
Yes, adChar is similar to T-SQL CHAR data type, and it will pad the data with white-spaces to the length defined by adChar.
You can use TRIM() or RTRIM() function to remove the...
March 6, 2006 at 7:40 pm
Viewing 15 posts - 196 through 210 (of 270 total)